home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / guide / html-hea.lha / ARexx / HTML-FRexxEd.rexx < prev    next >
OS/2 REXX Batch file  |  1995-03-17  |  453b  |  17 lines

  1. /* HTML-Helper Arexx script for FrexxEd
  2.  * Ver      : 0.9 (19th December 1994)
  3.  * Copyright: Michiel Willems (InterNet: michiel@aobh.xs4all.nl)
  4.  * Function : Pass on the HTML commands from HTML-Helper to FrexxEd.
  5.  * Input    : HTMLCMD - The HTML command to be inserted.
  6. */
  7.  
  8. OPTIONS RESULTS                             /* enable return codes     */
  9. PARSE ARG HTMLCMD
  10.  
  11. Portname = 'FREXXED.1'
  12. ADDRESS VALUE PortName
  13. '
  14. WindowToFront();
  15. Output('HTMLCMD');
  16. '
  17.